home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software USA 3 #11
/
Software USA Volume 3.11.iso
/
mac
/
Children's
/
Secret Squirrel™ Decoder
/
Secret Squirrel™ Decoder.0b7
/
script_7.ls
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-11-19
|
347 b
|
14 lines
global gValidKeyList, gUpperCaseTable
on keyDown
if (the number of chars in field "To be Encoded" >= 80) and (the keyCode <> 51) then
alert("The message should not exceed 80 characters!")
exit
end if
if getOne(gValidKeyList, the key) or (the keyCode = 51) then
pass()
else
alert("This is not a valid input!")
end if
end